ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / FilterUnaryExpression<T> Class / FilterUnaryExpression<T> Constructor
The path of the data item to which the filter will be applied.
The filter operation.
The value to be filtered.

In This Topic
    FilterUnaryExpression<T> Constructor
    In This Topic
    Initializes a new instance of the FilterUnaryExpression<T> class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal filterPath As System.Linq.Expressions.Expression(Of Func(Of T,Object)), _
       ByVal filterOperation As FilterOperation, _
       ByVal value As System.Object _
    )
    public FilterUnaryExpression<T>( 
       System.Linq.Expressions.Expression<Func<T,object>> filterPath,
       FilterOperation filterOperation,
       System.object value
    )

    Parameters

    filterPath
    The path of the data item to which the filter will be applied.
    filterOperation
    The filter operation.
    value
    The value to be filtered.
    See Also